(C) 1996 AROS - The Amiga Replacement OS
NAME
#include <intuition/intuition.h>
#include <proto/intuition.h>
void ModifyProp()
SYNOPSIS
struct Gadget * gadget
struct Window * window
struct Requester * requester
ULONG flags
ULONG horizPot
ULONG vertPot
ULONG horizBody
ULONG vertBody
LOCATION
In IntuitionBase at offset 26
FUNCTION
Changes the values in the PropInfo-structure of a proportional gadget and refreshes the display.
INPUTS
gadget
Must be a PROPGADGET
window
The window which contains the gadget
requester
If the gadget has GTYP_REQGADGET set, this must be
non
NULL.
flags
New flags
horizPot
New value for the HorizPot field of the PropInfo
vertPot
New value for the VertPot field of the PropInfo
horizBody
New value for the HorizBody field of the PropInfo
vertBody
New value for the VertBody field of the PropInfo
RESULT
None.
NOTES
This function causes all gadgets from this gadget to the end of the gadget list to be refreshed. If you want a better behaviour, use NewModifProp().
EXAMPLE
BUGS
SEE ALSO
NewModifyProp()
INTERNALS
HISTORY
27.01.1997 ldp
Polish
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
08.11.1996 aros
All OS function use now Amiga types
Moved intuition-driver protos to intuition_intern.h
24.10.1996 aros
Use the official AROS macros over the __AROS versions.
28.08.1996 digulla
Proportional gadgets BOOPSI